runtime.mheap.allArenas (field)
19 uses
	runtime (current package)
		malloc.go#L781: 			if len(h.allArenas) == cap(h.allArenas) {
		malloc.go#L782: 				size := 2 * uintptr(cap(h.allArenas)) * goarch.PtrSize
		malloc.go#L790: 				oldSlice := h.allArenas
		malloc.go#L791: 				*(*notInHeapSlice)(unsafe.Pointer(&h.allArenas)) = notInHeapSlice{newArray, len(h.allArenas), int(size / goarch.PtrSize)}
		malloc.go#L792: 				copy(h.allArenas, oldSlice)
		malloc.go#L798: 			h.allArenas = h.allArenas[:len(h.allArenas)+1]
		malloc.go#L799: 			h.allArenas[len(h.allArenas)-1] = ri
		mcheckmark.go#L42: 	for _, ai := range mheap_.allArenas {
		mgc.go#L1677: 	mheap_.sweepArenas = mheap_.allArenas
		mgc.go#L1740: 	arenas := mheap_.allArenas
		mgcmark.go#L94: 	mheap_.markArenas = mheap_.allArenas[:len(mheap_.allArenas):len(mheap_.allArenas)]
		mheap.go#L175: 	allArenas []arenaIdx
|  | The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |